home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / main.dxr / 00452_BG SOUND.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  277 b   |  18 lines

  1. global bgMusic
  2.  
  3. on exitFrame me
  4.   set bgMusic to random(5)
  5.   case bgMusic of
  6.     1:
  7.       puppetSound(2, "1.AIF")
  8.     2:
  9.       puppetSound(2, "2.AIF")
  10.     3:
  11.       puppetSound(2, "3.AIF")
  12.     4:
  13.       puppetSound(2, "4.AIF")
  14.     5:
  15.       puppetSound(2, "5.AIF")
  16.   end case
  17. end
  18.